Web: a11y improvements + new properties - #3381
Merged
Oleksandr Karpovich (eymar) merged 13 commits intoSep 10, 2026
Merged
Conversation
…ion type in ComposeWebSemanticsListener
…th and editable vs disabled vs readonly
Apolo (ApoloApps)
marked this pull request as ready for review
September 3, 2026 23:46
Oleksandr Karpovich (eymar)
self-requested a review
September 4, 2026 08:15
Member
|
Could you PTAL at the failing A11yScrollTest? |
Apolo (ApoloApps)
force-pushed
the
a11yWebImprovements
branch
from
September 8, 2026 16:49
788d45c to
0a7484e
Compare
Member
|
Apolo (@ApoloApps) do the web tests pass for you locally? |
Author
nope, still investigating... |
…ng style transforms, which does not participate in dom calculations, so overflows are not applied correctly
… removing hardcodes values (which do not generalize) and some awaits related to compose scolling not having finished, causing tests to not assert correctly because the changes are not being awaited
Author
|
Oleksandr Karpovich (@eymar) okay seems to work locally and I have started the web tests in my fork's github actions and waiting for the results (CONFIRMED THEY PASS✅🥳). I do think all of it is fixed and I'm pretty confident.
|
Oleksandr Karpovich (eymar)
approved these changes
Sep 10, 2026
Oleksandr Karpovich (eymar)
merged commit Sep 10, 2026
68e5b0c
into
JetBrains:jb-main
19 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Removed the slider and progressbar part of this PR since I have seen Oleksandr already working on it.
1. Use transform instead of left/top to avoid layout reflows, which are the most expensive operations possibleCancelled, breaks dom scrolling driving compose scrolling
2. Use more specialized collections to improve performance avoiding boxing, allocations and overall overhead1
3. Use htmlNode.textContent also to avoid layout reflows
4. Added support for aria-readonly, SemanticsProperties.MaxTextLength and SemanticsProperties.Selected
Release Notes
Fixes - Web